Add app.json.

Akinori MUSHA 9 years ago
parent
commit
5675ecf79b
1 changed files with 23 additions and 0 deletions
  1. 23 0
      app.json

+ 23 - 0
app.json

@@ -0,0 +1,23 @@
1
+{
2
+    "name": "Huginn",
3
+    "description": "Build agents that monitor and act on your behalf.  Your agents are standing by!",
4
+    "website": "https://github.com/cantino/huginn",
5
+    "repository": "https://github.com/cantino/huginn",
6
+    "env": {
7
+        "BUILDPACK_URL": "https://github.com/ddollar/heroku-buildpack-multi.git",
8
+        "APP_SECRET_TOKEN": {
9
+            "generator": "secret"
10
+        },
11
+        "PROCFILE_PATH": "deployment/heroku/Procfile.heroku",
12
+        "ON_HEROKU": "true",
13
+        "FORCE_SSL": "true",
14
+        "INVITATION_CODE": {
15
+            "generator": "secret"
16
+        },
17
+        "USE_GRAPHVIZ_DOT": "dot"
18
+    },
19
+    "scripts": {
20
+      "postdeploy": "bundle exec rake db:migrate"
21
+    },
22
+    "success_url": "/users/sign_up"
23
+}